Created
September 16, 2015 15:57
-
-
Save qetr1ck-op/dc7fb71d2d3f61b4de76 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
module.value('a', 123); | |
module.constant('A', 321); //can't modify with a decorator | |
function Controller(a, A) { | |
expect(a).toEqual(123); | |
expect(A).toEqual(231); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment