Skip to content

Instantly share code, notes, and snippets.

@jheg
Created April 8, 2015 18:58
Show Gist options
  • Save jheg/cbdd4c6854c3288d3329 to your computer and use it in GitHub Desktop.
Save jheg/cbdd4c6854c3288d3329 to your computer and use it in GitHub Desktop.
ruby test
test "product is not valid unless title is at least 10 characters long" do
product = Product.new(
title: "Book",
description: "yyy",
price: 1,
image_url: "fred.jpg"
)
assert product.invalid?
assert_equal ["Please ensure title is at least 10 characters long"], product.errors[:title]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment