spec/models/content_spec.rb in alchemy_cms-2.1.beta1 vs spec/models/content_spec.rb in alchemy_cms-2.1.beta5
- old
+ new
@@ -1,11 +1,11 @@
require 'spec_helper'
-describe Content do
+describe Alchemy::Content do
it "should return the ingredient from its essence" do
Factory(:element)
- EssenceText.first.update_attributes(:body => "Hello")
- Content.first.ingredient.should == EssenceText.first.ingredient
+ Alchemy::EssenceText.first.update_attributes(:body => "Hello")
+ Alchemy::Content.first.ingredient.should == Alchemy::EssenceText.first.ingredient
end
end