9 lines
184 B
Ruby
9 lines
184 B
Ruby
|
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
|