1
0
Fork 0
forked from OpenNeo/impress
impress/spec/models/zone_spec.rb

9 lines
184 B
Ruby
Raw Normal View History

require 'spec_helper'
describe Zone do
specify "should find by id, report label" do
Zone.find(1).label.should == 'Music'
Zone.find(3).label.should == 'Background'
end
end