frankwang0909 / Rails5-demo

learn Ruby on Rails with #Agile Web Development with Rails 5#
https://pragprog.com/titles/rails5/source_code
0 stars 0 forks source link

11.1.2 Changing the Flow. run `bin/rails test` get 1 failure #3

Open frankwang0909 opened 6 years ago

frankwang0909 commented 6 years ago

run unit test bin/rails test, got the following errors:

Failure:
LineItemsControllerTest#test_should_create_line_item [/home/wxf/work/shopping/test/controllers/line_items_controller_test.rb:27]:
<Your Pragmatic Cart> expected but was
<Your Cart>..
Expected 0 to be >= 1.

solution

/test/controllers/line_items_controller_test.rb:27

change the code to:

assert_select 'h2', 'Your Cart'