Guest User

Untitled

a guest
Feb 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. require 'spec_helper'
  2. require 'factory_girl'
  3.  
  4. describe "Supplier Model" do
  5. # let(:supplier) { Supplier.new }
  6. # it 'can be created' do
  7. # supplier.should_not be_nil
  8. # end
  9.  
  10. it 'should create a supplier' do
  11. supplier = Factory(:supplier)
  12. supplier.should be_valid
  13. end
  14. end
Add Comment
Please, Sign In to add comment