summaryrefslogtreecommitdiff
path: root/spec/unit/customer_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/customer_spec.rb')
-rw-r--r--spec/unit/customer_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/unit/customer_spec.rb b/spec/unit/customer_spec.rb
new file mode 100644
index 0000000..703693e
--- /dev/null
+++ b/spec/unit/customer_spec.rb
@@ -0,0 +1,10 @@
+require "spec_helper"
+
+describe Customer do
+ describe "#statement" do
+ it "produces a statement" do
+ customer = Customer.new('george')
+ customer.statement.should_not be_nil
+ end
+ end
+end