Add test for shouldShow function

This commit is contained in:
Blade Barringer
2015-07-24 10:13:55 -05:00
parent 26b3ab1f9a
commit 061e6dbfa5

View File

@@ -183,6 +183,12 @@ describe('Challenges Controller', function() {
it('selects no groups');
});
describe('shouldShow', function() {
it('overrides task controller function by always returning true', function() {
expect(scope.shouldShow()).to.eq(true);
});
});
describe("save challenge", function() {
});