summaryrefslogtreecommitdiff
path: root/spec/javascripts
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-07-07 22:25:54 -0600
committermo khan <mo@mokhan.ca>2014-07-07 22:25:54 -0600
commit7f994b01baa0709d5dca2a2ecb223e6c29dc760f (patch)
treeedfeeb02447d7acda46d3f7b57aecb4ef1cf3788 /spec/javascripts
parente0d05540f3c29c6f70a6c2f84a38085d20f7d028 (diff)
remove greeting class.
Diffstat (limited to 'spec/javascripts')
-rw-r--r--spec/javascripts/utility/greeting_spec.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/spec/javascripts/utility/greeting_spec.js b/spec/javascripts/utility/greeting_spec.js
deleted file mode 100644
index dc1e5bf8..00000000
--- a/spec/javascripts/utility/greeting_spec.js
+++ /dev/null
@@ -1,16 +0,0 @@
-describe ("Greeting", function() {
- beforeEach (function() {
- sut = new Greeting('mo');
- });
- var sut;
- describe ("when greeting someone", function() {
- it ("should say their name", function() {
- expect(sut.greet()).toEqual('hi mo');
- });
- });
- describe ("when saying goodbye", function() {
- it ("should say their name", function() {
- expect(sut.goodbye()).toEqual('goodbye mo');
- });
- });
-});