spec/zen/theme.rb in zen-0.2.8 vs spec/zen/theme.rb in zen-0.3b
- old
+ new
@@ -1,14 +1,14 @@
require File.expand_path('../../helper', __FILE__)
describe("Zen::Theme") do
- it("No themes should exist") do
+ it('Error when retrieving a theme when no themes exist') do
should.raise?(Zen::ThemeError) { Zen::Theme[:spec] }
end
- it("Add a new theme") do
+ it('Add a new theme') do
Zen::Theme.add do |t|
t.name = 'spec'
t.author = 'Yorick Peterse'
t.about = 'An example theme'
t.template_dir = __DIR__
@@ -16,26 +16,24 @@
end
should.not.raise?(Zen::ThemeError) { Zen::Theme[:spec] }
end
- it('Add an existing theme') do
+ it('Add an already existing theme') do
should.raise?(Zen::ValidationError) do
Zen::Theme.add do |t|
t.name = 'spec'
t.author = 'Yorick Peterse'
t.about = 'An example theme'
t.template_dir = __DIR__
end
end
end
- it("Retrieve our theme") do
+ it('Retrieve a theme using Zen::Theme') do
theme = Zen::Theme[:spec]
- theme.name.should === :spec
- theme.author.should === 'Yorick Peterse'
- theme.template_dir.should === __DIR__
+ theme.name.should == :spec
+ theme.author.should == 'Yorick Peterse'
+ theme.template_dir.should == __DIR__
end
-
end
-