Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Melhorias nos testes Jasmine #1

Merged
merged 1 commit into from
Aug 24, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tests/jasmine/SpecRunner.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
<script type="text/javascript" src="lib/jasmine-1.2.0.rc3/jasmine-html.js"></script>

<!-- include source files here... -->
<script type="text/javascript" src="spec/SpecHelper.js"></script>
<script type="text/javascript" src="spec/jsRouteSpec.js"></script>
<script type="text/javascript" src="../../jsRoute.js"></script>

<!-- include spec files here... -->
<script type="text/javascript" src="../../jsRoute.js"></script>
<script type="text/javascript" src="spec/SpecHelper.js"></script>
<script type="text/javascript" src="spec/jsRouteSpec.js"></script>

<script type="text/javascript">
(function() {
Expand Down
110 changes: 59 additions & 51 deletions tests/jasmine/spec/jsRouteSpec.js
Original file line number Diff line number Diff line change
@@ -1,51 +1,59 @@
describe("jsRoute", function() {

beforeEach(function() {

});

it("should be able to add routes", function() {
route.add('^$', function(){self.x = self.x+1;});
expect(route.routes.indexOf("^$") > -1).toBeTruthy();
});

it("should be able to init routing", function() {
location.hash="#22-10-2012";

route.add('^\\d{1,2}\\-\\d{1,2}\-\\d{4}$', function(x){
if(x==='22-10-2012'){
location.hash='#alterado';
}
});

runs(function(){
route.init();
});

waits(1000);

runs(function(){
expect(location.hash).toEqual('#alterado');
});

});

it("should be able to force a route", function() {
route.add('^\\d{1,2}\\-\\d{1,2}\-\\d{4}$', function(x){
if(x==='23-10-2012'){
location.hash='#alterado';
}
});

runs(function(){
route.call('#23-10-2012');
});

waits(1000);

runs(function(){
expect(location.hash).toEqual('#alterado');
});

});
});
/*global describe, afterEach, beforeEach, it, expect, runs, waits, window, route*/

(function (window, route) {

'use strict';

describe("jsRoute", function () {

var self = this;

beforeEach(function () {
route.routes = [];
route.funcs = [];
self.hash = false;
window.clearInterval(route.interval);
});

it("should be able to add routes", function () {
route.add('^$', function () {
self.x = self.x + 1;
});
expect(route.routes.indexOf("^$") > -1).toBeTruthy();
});

it("should be able to init routing", function () {
window.location.hash = "#22-10-2012";

route.add('^\\d{1,2}-\\d{1,2}-\\d{4}$', function (day) {
self.hash = day;
});

route.init();

waits(1000);

runs(function () {
expect('22-10-2012').toEqual(self.hash);
});
});

it("should be able to force a route", function () {
route.add('^\\d{1,2}-\\d{1,2}-\\d{4}$', function (day) {
self.hash = day;
});

route.call('23-10-2012');
expect('23-10-2012').toEqual(self.hash);
});

it("should be able to use pure regexp as route", function () {
route.add(/^\d{1,2}-\d{1,2}-\d{4}$/, function (day) {
self.hash = day;
});

route.call('24-08-2012');
expect('24-08-2012').toEqual(self.hash);
});
});
}(window, route));