a testing framework that comes in the standard library of Ruby 1.9.

learn more… | top users | synonyms

-1
votes
0answers
29 views

MiniTest not displaying output

I'm playing around with MiniTest reporters to see if I can't get some different output, but I'm not seeing output of any kind, with or without my reporter. Here's the output I'm seeing: Run options: ...
0
votes
2answers
34 views

Rails MiniTest 'post' method not found

I'm receiving the following error when I try to run my request specs: POST :: /users/:id/authentications request::successful request#test_0001_Adds an authentication record to a user: NoMethodError: ...
0
votes
0answers
24 views

Strange behaviour in Rails MiniTest unit testing of a model

I encounter a very strange behaviour in Rails using MiniTest for unit testing a simple model. That is my Currency model: class Currency < ActiveRecord::Base attr_accessible :currency_cd, ...
0
votes
1answer
32 views

Watir-webdriver rails integration with minitest

Looking for equivalent of the gem minitest-rails-capybara for watir-webdriver, or in other words having the tests automatically start and stop the rails server. This is for the purposes of a ...
0
votes
1answer
49 views

Unit testing a model method in Rails using MiniTest - How to use stubs or mock objects?

I am learning on Rails 3 and I started to to unit testing. After some research I decided to use MiniTest for unit testing. I have the following model class Participant < ActiveRecord::Base ... ...
1
vote
1answer
33 views

has_many and belongs_to assertion in MiniTest using Mongoid

I use Mongoid as database and I have two models like below. I couldn't assert has_many and belongs_to relationship. What can I assert this relations in MiniTest. Event.rb class Event include ...
0
votes
0answers
15 views

Paperclip Shoulda Matchers for Miniteset

The Paperclip Documentation provides instruction for setting up Paperclip's Shoulda matchers for RSpec and Test::Unit. However when I tried to set them up for Minitest I wasn't successful (I followed ...
5
votes
2answers
104 views

When testing, do I have to precompile assets every time I adjust Javascript files in Rails 3.2?

I'm trying to learn TDD and BDD and do it the right way. The stack I'm using ( or trying to use, Spork doesn't work with Guard for me) is Minitest-Guard-Spork-Capybara. I am focusing on Unit Tests for ...
0
votes
1answer
33 views

Does Minitest Have A Version Of RSpec's Anything?

In RSpec I can do mock_obj.should_receive(:method).with(anything)... where 'anything' is any variable. Can I do this in Minitest?
1
vote
2answers
47 views

How to run code before each test case in all tests in MiniTest?

I need to run code before each test in all my tests in MiniTest. Before I did: MiniTest::Unit::TestCase.add_setup_hook do ...code to run before each test end After I upgraded MiniTest to ...
0
votes
0answers
38 views

How to target an input using capybara fill_in method?

When the "save_and_open_page" method is hit, the fields are always empty. I have a module that contains my log in methods module AuthlogicTestHelpers def with_admin_session before do ...
0
votes
2answers
28 views

Search command output for string minitest

I'm trying to create a minitest for chef (minitest::spec) and I'm a little lost at how to accomplish what I want in ruby. What I want to do is have the code run the 'date' command and then check if ...
1
vote
0answers
22 views

Minitest class definitions?

In minitest_helper.rb I have seen the minitest class defined as: MiniTest::Rails::Spec or MiniTest::Spec What is the difference between these definitions? I have also noticed where the basic ...
0
votes
0answers
64 views

How to fill_in datepicker using Capybara, Rails, MiniTest spec

I have a form_tag that generates the following HTML: <form accept-charset="UTF-8" action="http://www.example.com/product_page" id="dates_form" method="get"><div ...
0
votes
0answers
26 views

Use Rspec Syntax to Enforce Non-Test Code Debug and Errors Raising

I wasn't sleeping on a issue we have and I think I have found an elegant solution. Our issue is our code requires a lot of external http requests which is hard to test apart if you mock the entire ...
0
votes
2answers
48 views

Is there a “should” minitest gem?

I would like to use fluent assertions type of syntax with minitest result.should_be "my result" result.should_be_true result.should_contain "foo" Is there some gem that adds this functionality? My ...
1
vote
2answers
32 views

error message test on minitest

I use mini_test for testing. I have a code part like below. raise Type_Error, 'First Name must not be empty' if @person.first_name == nil How can I write this code's test? Thanks...
0
votes
2answers
69 views

uniqueness test on minitest

I use minitest on Ruby on Rails. Below is my model. require 'mongoid' class Person include Mongoid::Document index({ pin: 1 }, { unique: true, name: "pin_index" }) field :first_name field ...
0
votes
1answer
45 views

How to use capybara with multiple forms in the one view with Rails?

I have a Rails 3.2 project using Minitest::Spec and Capybara. My view contains multiple forms so I can either edit or delete the record. Sample code: <%= simple_form_for @product do |f| %> ...
2
votes
1answer
30 views

Howto run a specific Ruby 1.9 Test::Unit::TestCase subclass by name

The Ruby unit test framework allows subclassing Test::Unit::TestCase to create suites of tests. It is possible to run subsets of tests: all tests in a given .rb file, with a given name e.g. foo.rb ...
0
votes
1answer
57 views

Why does integration minitest spec with capybara return true for .present? when no rows in db

I am running Rails 3.2.11 and believe I have minitest spec and capybara installed and working correctly through my gem file and test_helper.rb I have the following integration test: describe ...
0
votes
0answers
49 views

Is this a bug in minitest, sprockets-rails, or ruby-2?

I wanted to patch a bug in sprockets-rails, but when I ran the test suite (using ruby-2.0.0-p0 as well as ruby-head), I got the following error: ...
0
votes
1answer
43 views

testing a method's parameter

How can I test a method's parameter? def create_person child end Above code is my method. It takes a parameter named "child". I try to test this parameter. So, if method doesn't take parameter, ...
0
votes
0answers
30 views

testing inheritance between classes

I develop an application using Ruby on Rails, and I make tests. Belows are my model classes. How can I test whether Season inherits from Period using mini_test? require 'mongoid' require_relative ...
2
votes
1answer
98 views

Testing a concern / module that uses ActiveRecord

SCENARIO I have extracted a concern called Taggable. It's a module that allows any model to support tagging. I have included this concern/module into models like 'User', 'Location', 'Places', ...
0
votes
1answer
102 views

Rake task with minitest-spec-rails gem

I have been using the minitest-rails gem, and everything works great when I run: rake minitest:models However, I recently switched to the minitest-spec-rails gem, and when I run that same command ...
0
votes
0answers
32 views

Rails has_many and belongs_to on same model

I have a School model that has_many :users. But, each school also has a primary_user. Here is my model: has_many :users belongs_to :primarycontact, :class_name => "User" This works fine in ...
0
votes
2answers
39 views

Run all models tests using rake task

Trying to use a rake task to run only tests in the test/models directory. Using minitest. I have a rake task that will run all test require "rake/testtask" Rake::TestTask.new(:test => ...
1
vote
2answers
69 views

mongoid configuration on ruby without framework

I try to write business logic of my application. It is all ruby classes. There is no database or no UI framework like Rails, Sinatra. I only have a Gem_file on business logic and, Gem_file only ...
0
votes
1answer
23 views

Equivalent of should be_true in minitest

I would like to know the equivalent of: event.should be_live in Minitest? The method I am testing is: event.live? At the moment I am using: conf.live?.must_equal true But it looks to me quite ...
1
vote
0answers
50 views

How can I use CI:Reporter or Minitest-CI with Minitest custom runner?

I am trying to run a suite of automated tests on a CI Server written in Ruby with MiniTest. I have written a custom minitest runner a la the question below. Ruby Minitest: Suite- or Class- level ...
0
votes
1answer
38 views

Calling any Ruby class in Mini_Test and Uninitialized Constant Error

I want to make DCI implementation by using Mini_Test and Ruby, but I couldn't call AcademicYear class in Mini_Test. I have a simple class and Mini_Test class in seperated files like below; ...
-1
votes
1answer
46 views

Testing a ruby block with minitest

What would be the best way of testing a Ruby block with minitest. Rspec seems to have a set of yield matchers. Is there something similar in minitest
0
votes
1answer
48 views

Cucumber-like table steps in rspec/minitest?

I was wondering if there was anything out there to help me input tabular test vectors into my rspec and/or minitest tests? Like the tables you can have in Cucumber steps. Any suggestions welcome. ...
0
votes
2answers
91 views

What the correct way to create a stub using minitest?

I'm having issues creating a stub for the tests I'm running using minitest (4.7.0). I've tried the following from what I've researched from previous SO questions and it doesn't work: ...
0
votes
1answer
136 views

minitest with simplecov

I'm trying to test minitest files like this: COVERAGE=true ruby -Itest test/views/info_pages_test.rb COVERAGE=true ruby -Itest test/views/errors_test.rb now my info_pages_test has 97% coverage and ...
0
votes
1answer
36 views

how do I extend LOAD_PATH for MiniTest?

[Aside: I am slowly answering my own question in "a concise recipe for installing, configuring and running minitest under autotest"] My environment: Ruby 2.0. Padrino 0.10.7. Minitest 2.6.2. ...
1
vote
1answer
78 views

a concise recipe for installing, configuring and running minitest under autotest or Guard

In the past, I've run Rails + RSpec + autotest. Now I've upgraded to ruby 2.0 and I want to use minitest in a non-Rails environment (I'm using Padrino / DataMapper). I'm certain I'm not alone in ...
0
votes
1answer
64 views

How can I write test for “where” line

I want to write controller test related password update test. I find authenticated person in the controller's first line with where condition. How can I write test related this line. I couldn't yiled ...
1
vote
2answers
76 views

Minitest specs: multiple before/end blocks

This a minimal generic example of the situation I have: test/mytest.rb describe "What I want to test" do include TestUtils temporary_change_value(settings, :tmp_setting, value) describe ...
0
votes
0answers
25 views

spinach step error when using omniauth

Below code is my signin.feauture steps. I use omniauth-identity gem for authentication. Normally, signup and sigin pages work on development. But, signin.feature gives error. class ...
0
votes
1answer
31 views

minitest racktest

Does anybody have any examples of using minitest and reacktest together to create request specs? I want to be able to request a resource: get '/api/resource', format: :json And then test the ...
0
votes
0answers
29 views

mlutiple records and search using fabrication gem

I use minitest for test framework and fabrication gem for random data. What I need is that I want to create 2-3 person objects using fabricator gem. Then I search value on object that created using ...
1
vote
0answers
154 views

minitest testing and code coverage

I use mini-test for testing framework. I use omniauth gem for authentication. I use simplecov for code coverage. I run my tests using "bundle exec rake" or "rake minitest:controllers". I give an ...
1
vote
1answer
40 views

Session hash name error in integration test

I'm trying to test with minitest two controller methods: class CurrenciesController < InheritedResources::Base def mark_refresh session[:refreshable] = true redirect_to currencies_url ...
1
vote
1answer
48 views

writing model method tests using minitest

I use mini-test for testing framework. I try to write model tests. class Person include Mongoid::Document field :provider, type:String field :user_id, type:String field :name, type:String ...
2
votes
1answer
88 views

minitest route testing

I use minitest for testing framework. I try to test routes. routes.rb match "/auth/:provider/callback", to: "sessions#create", :as => sessioncallback I want to test this route. I try a code ...
1
vote
0answers
52 views

minitest routing test htpp:200 error

i use minitest for test framework. **routes.rb file** Cultiva::Application.routes.draw do root :to => 'welcome#index' match "sign-up" => "identities#new", :as => :signup, method: :get ...
0
votes
1answer
27 views

Loading miniskirt with Spork TestUnit

I really like Miniskirt and Minitest but I am having issues loading the factories.rb file on each run using spork server. It goes: cannot load such file -- factories (LoadError) My factories.rb ...
0
votes
1answer
89 views

Why is my minitest.rake running twice when I enter rake into terminal?

I created a minitest.rake, as per ryan bates railscast (http://railscasts.com/episodes/327-minitest-with-rails). When I run rake in the terminal, the test runs, and then runs again before resetting ...

1 2 3 4 5