10 lines
154 B
Ruby
10 lines
154 B
Ruby
|
require "spec_helper"
|
||
|
|
||
|
describe Item do
|
||
|
# TODO: start writing tests
|
||
|
it "can be instanciate" do
|
||
|
Item.new.should be_an_instance_of(Item)
|
||
|
end
|
||
|
end
|
||
|
|