-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd1b613
commit d04cabb
Showing
4 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import Ember from 'ember'; | ||
|
||
export default Ember.Mixin.create({ | ||
}); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* jshint expr:true */ | ||
import { expect } from 'chai'; | ||
import { | ||
describe, | ||
it | ||
} from 'mocha'; | ||
import Ember from 'ember'; | ||
import ValidatorMixin from '../../../mixins/validator'; | ||
|
||
describe('ValidatorMixin', function() { | ||
// Replace this with your real tests. | ||
it('works', function() { | ||
var ValidatorObject = Ember.Object.extend(ValidatorMixin); | ||
var subject = ValidatorObject.create(); | ||
expect(subject).to.be.ok; | ||
}); | ||
}); |