tarot 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/generators/templates/initializer.rb +2 -2
- data/lib/tarot/version.rb +1 -1
- data/spec/tarot_spec.rb +4 -0
- metadata +3 -3
data/lib/tarot/version.rb
CHANGED
data/spec/tarot_spec.rb
CHANGED
@@ -33,6 +33,10 @@ describe Tarot do
|
|
33
33
|
@tarot.fizz.should == "buzz"
|
34
34
|
@tarot.fizz(nil, "production").should == "bang"
|
35
35
|
end
|
36
|
+
|
37
|
+
it "should fail when method_missing follows a multi-level chain that doesn't exist" do
|
38
|
+
lambda { @tarot.blarg.blaze }.should raise_error(NameError)
|
39
|
+
end
|
36
40
|
end
|
37
41
|
|
38
42
|
context "Given multiple config files" do
|
metadata
CHANGED