i recreated a test directory, and placed all the necessary files in the
directory.

replaced gem 'minitest' with
              gem 'minitest-rails', '~> 0.1.0.alpha'
I replaced coz I was getting in error in the terminal which reads
              Could not find generator mini_test:install
therefore, again, I replaced and bundled. it then proceeded to  create
test/minitest_helper.rb

anyway.

i run the first test which is

require "minitest/autorun"
require "minitest/rails"

class ExercisesTest < ActionController::TestCase

  test "should get show" do
    get :show
    assert_response :success
  end

end

and the output from the terminal reads

Errors running test:units! #<NoMethodError: undefined method `[]' for
nil:NilClass>

I need some hand holding setting up the directory now. what to test, and
how to write tests. I'm not looking just to get tests to pass ( I am)
but I'm wanting to know what the fuck I'm doing, really. None of this
half assed shit, ya know?

be well.

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/2026db7ff5ae103f19cba4750a484dd8%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to