22 lines
465 B
Ruby
22 lines
465 B
Ruby
require 'test_helper'
|
|
|
|
class RecipeTest < ActiveSupport::TestCase
|
|
# test "the truth" do
|
|
# assert true
|
|
# end
|
|
|
|
test "scraping should get all possible information" do
|
|
r = Recipe.new
|
|
r.original_url = "http://www.coolinarika.com/recept/burek-za-obraza/"
|
|
r.save!
|
|
r.scrape!
|
|
r.save!
|
|
|
|
assert_equal r.ingredients.length, 10
|
|
assert_not_nil r.name
|
|
assert_equal "Srednje zahtjevno", r.duration.to_s
|
|
assert r.ordinal >= 1, "Ordinal is not working!"
|
|
end
|
|
|
|
end
|