How to solve error " add some examples to (or delete) "

When I run command for tests by using:

bundle exec rspec spec/

Then I got error like as follow:

Pending:

   users/new.html.erb add some examples to (or delete) /home/jaimin/rails3/rails_projects/sample_app/spec/views/users/new.html.erb_spec.rb     # No reason given     # ./spec/views/users/new.html.erb_spec.rb:4

    UsersHelper add some examples to (or delete) /home/jaimin/rails3/rails_projects/sample_app/spec/helpers/users_helper_spec.rb     # No reason given     # ./spec/helpers/users_helper_spec.rb:14

Finished in 1.19 seconds 14 examples, 0 failures, 2 pending

How can I solve this?

Kind regards.

By reading and following the directions in the message?

Have you even looked at the files referenced?

   users/new.html.erb add some examples to (or delete)

/home/jaimin/rails3/rails_projects/sample_app/spec/views/users/new.html.erb_spec.rb

How can I solve this?

By reading and following the directions in the message?

Have you even looked at the files referenced?

It is right I should follow the directions which is given in message.

The " users_helper_spec.rb " file contain following code:

require 'spec_helper'

# Specs in this file have access to a helper object that includes # the UsersHelper. For example:

That depends entirely on what your code does. Typically you would have a group of specs testing various cases for each of the methods in UsersHelper.

If you’re not going to write any specs then you can just delete the file.

Fred

Frederick Cheung wrote in post #1144297: