tarot 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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