Hello,
Im coming from the rails world and used to write tests like this one in rspec :
require 'spec_helper'
describe Product do
it "is valid with a productname, description and a image_url " do
expect(create(:product)).to be_valid
end
it "is invalid without a productname " do
expect(build(:product, title: nil)).to have(1).errors_on(:title)
end
it "is invalid without a description " do
expect(build(:product, description: nil)).to have(1).errors_on(:description)
end
it "is invalid without a image_url " do
expect(build(:product, image_url: nil)).to have(1).errors_on(:image_url)
end
it "is invalid with a price smaller dan 0.01 " do
expect(build(:product, price: 0)).to have(1).errors_on(:price)
end
it "is invalid with a image not ending on jpg, gif or png " do
expect(build(:product, image_url: "test.pdf")).to have(1).errors_on(:image_url)
end
it "is invalid with a duplicate title" do
FactoryGirl.create(:product, title: "Book1")
product = FactoryGirl.build(:product, title: "Book1")
expect(product).to have(1).errors_on(:title)
end
end
Is there a tool which works the same. Im have looked and I think phpspec or codeception could do it.
What is the oponion from you the experts ?
Roelof
Edit 1 : Or can I better follow the testing decoded book to learn how to write good test.
Im now testing codeception and ran into my first problem.
I have made a test in the test/unit/TestProduct.php file But when I do codeception run I see no test executed.
All my files can be found here : https://github.com/roelof1967/laravel_commerce_try
Roelof
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community