This repository has been archived on 2021-07-13. You can view files and clone it, but cannot push or open issues or pull requests.
feedfu/spec/models/item_spec.rb
Aaron Mueller 9ea67909cc Replace the ruby unit testing framework with rspec
Add watchr and spork to speed up the test run. Please note that spork
and watchr needs to start up separately. (See Gemfile for more
information)
2012-06-06 22:41:31 +02:00

9 lines
125 B
Ruby

require "spec_helper"
describe Item do
it "can be instantiated" do
Item.new.should be_an_instance_of(Item)
end
end