Support the ongoing development of Laravel.io →
posted 10 years ago
Testing

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.

Last updated 2 years ago.
0

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

0

No test expert here who can help me ?

Roelof

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.