Skip to content

Commit d6257f0

Browse files
committed
//Misc
1 parent 0f12378 commit d6257f0

File tree

3 files changed

+17
-3
lines changed
  • com.farata.cleardatabuilder.extjs/resources/sample_project/WebContent/test/spec
  • com.farata.cleardatabuilder.extjs.feature
  • com.farata.cleardatabuilder.extjs.site

3 files changed

+17
-3
lines changed

com.farata.cleardatabuilder.extjs.feature/feature.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
</description>
1010

1111
<copyright url="http://www.example.com/copyright">
12-
Copyright (c) 2009,2012. Farata Systems LLC
12+
Copyright (c) 2009,2013. Farata Systems LLC
1313
</copyright>
1414

1515
<license url="http://www.example.com/license">
16-
Copyright (c) 2008-2012. Farata Systems LLC
16+
Copyright (c) 2008-2013. Farata Systems LLC
1717

1818
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the &quot;Software&quot;), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
1919

com.farata.cleardatabuilder.extjs.site/site.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<site>
3-
<feature url="features/com.farata.cleardatabuilder.extjs.feature_1.0.0.201301231020.jar" id="com.farata.cleardatabuilder.extjs.feature" version="1.0.0.201301231020">
3+
<feature url="features/com.farata.cleardatabuilder.extjs.feature_1.0.0.201304191609.jar" id="com.farata.cleardatabuilder.extjs.feature" version="1.0.0.201304191609">
44
<category name="ClearDataBuilder for Ext JS, v 1.0"/>
55
</feature>
66
<category-def name="ClearDataBuilder for Ext JS, v 1.0" label="ClearDataBuilder for Ext JS, v 1.0">
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Ext.define('Test.spec.BasicAssumptions' ,{}, function () {
2+
describe("Basic Assumptions", function() {
3+
4+
it("has ExtJS4 loaded", function() {
5+
expect(Ext).toBeDefined();
6+
expect(Ext.getVersion()).toBeTruthy();
7+
expect(Ext.getVersion().major).toEqual(4);
8+
});
9+
10+
it("has loaded **{app.name}** code",function(){
11+
expect(**{app.name}**).toBeDefined();
12+
});
13+
});
14+
});

0 commit comments

Comments
 (0)