foodsoft/test/unit/supplier_test.rb

46 lines
1.3 KiB
Ruby
Raw Normal View History

# == Schema Information
# Schema version: 20090317175355
#
# Table name: suppliers
#
# id :integer not null, primary key
# name :string(255) default(""), not null
# address :string(255) default(""), not null
# phone :string(255) default(""), not null
# phone2 :string(255)
# fax :string(255)
# email :string(255)
# url :string(255)
# contact_person :string(255)
# customer_number :string(255)
# delivery_days :string(255)
# order_howto :string(255)
# note :string(255)
# shared_supplier_id :integer
# min_order_quantity :string(255)
# deleted_at :datetime
#
2009-01-06 11:49:19 +01:00
require File.dirname(__FILE__) + '/../test_helper'
class SupplierTest < Test::Unit::TestCase
fixtures :suppliers
def setup
@supplier = Supplier.find_by_name("Terra")
end
def test_read
assert_equal "Terra", @supplier.name
assert_equal "www.terra-natur.de", @supplier.url
end
def test_update
assert_equal "tuesday", @supplier.delivery_days
@supplier.delivery_days = 'wednesday'
assert @supplier.save, @supplier.errors.full_messages.join("; ")
@supplier.reload
assert_equal 'wednesday', @supplier.delivery_days
end
end