Test-unit is a unit testing library in Ruby. It was part of the standard library in Ruby 1.8, and there's a compatibility layer in the standard library of Ruby 1.9.

learn more… | top users | synonyms

-2
votes
1answer
22 views

how to verify existence of a schema or table in python [closed]

I want to verify the schema or table whether are in my database under my python testunit framework. Thank you very much.
1
vote
1answer
22 views

How do I mock or override Kernel.system?

How would be the correct way to mock or override the Kernel.system method so that when called with: system("some command") instead of executing the command, it executes some predefined code? I ...
0
votes
1answer
31 views

Mocha: stubbing method with specific parameter but not for other parameters

I want to stub a method with Mocha only when a specific parameter value is given and call the original method when any other value is given. When I do it like this: ...
0
votes
1answer
31 views

Please suggest why the following test is failing

The following method passes tests appropriately: def associate_grid_location devices.each do |device| if device.grid_location and grid_location_id.nil? ...
0
votes
1answer
22 views

Parsing Request Headers in Test::Unit

I'm trying to parse HTTP request headers in Test::Unit, but to no avail. I'm writing a functional test for a controller like so: test "create a shopify order" do get :order, PARAMS, {HEADER1 => ...
0
votes
1answer
16 views

How to run tests in order they are written?

I am trying to write test for testing sphinx search. I need user to pass some params to api, and based on that params shpinx to perform search. I have following 3 test in test_helper.rb I have ...
0
votes
1answer
73 views

Am I going overboard with rails testing

I have a member of my model that has these validations validates :status, :presence => true, :numericality => {:only_integer => true} In order to test that, my plan was to make a fixture ...
0
votes
1answer
57 views

Repeat the test suite for different input parameters in Test::Unit ruby

We are building a QA automation setup with test::unit and selenium. Tests for each page in our web app lives in separate directory, and at the top level directory, we have this: require 'rubygems' ...
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
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: ...
1
vote
1answer
63 views

Does the parallel_tests gem run your test suites in sequence?

I'm reading through the parallel_tests source but don't understand it yet, so I thought I would jump to the chase and ask my question here. Does the parallel_tests gem run all of the tests in your ...
1
vote
1answer
52 views

How to stop rspec from running test unit at the end?

Rspec tries to run Test::Unit tests at the end of running any spec file or whole test suite. It's still okay as I don't have any test unit test files but it tries to pass on the command line options ...
1
vote
1answer
145 views

Rails test/unit testing helper method, NoMethodError: undefined method

How to avoid this error: Error: test_update_location(LocationControllerTest) NoMethodError: undefined method `show_previous_version' for ...
0
votes
1answer
44 views

rails performance test -run one test

I have couple performance tests in my rails app which resides in test/performance/some_file.rb so file contain couple methods. I need run only one to get good logs inside file I have couple test_* ...
0
votes
1answer
103 views

“invalid option” error when running cucumber with “--tags”

I've been playing around with Cucumber for about three weeks now, and everything works well, except this little thing here. Whenever I run my tests with e.g. cucumber checkout.feature --tags ...
0
votes
3answers
41 views

Load a Ruby TestCase Without Running It

I'm trying to write a custom tool that runs ruby unit tests with my customizations. What I need it to do is to load a certain TestCase from given file(through require or whatever), and then run it ...
0
votes
1answer
87 views

New to Rails — Webrat methods not working in integration test

I have a Gemfile: source 'https://rubygems.org' gem 'rails', '3.2.11' gem 'omniauth' gem 'omniauth-facebook' gem 'thin' # Bundle edge Rails instead: # gem ...
0
votes
1answer
61 views

rake:test not running custom tests in subdirectory

I'm using Rails 4.0.0.beta1. I added two directories: app/services and test/services. I also added this code, based on reading testing.rake of railties: namespace :test do ...
0
votes
0answers
23 views

How to stop module methods from autorunning in test?

I'm trying to test my Sinatra app's helpers. The problem is that the test for some reason auto-runs all or some of the helper module's methods resulting in: NameError: undefined local variable or ...
1
vote
1answer
70 views

Why does Ruby run only some tests and not others?

I'm using this command to run some tests... bundle exec ruby -Itest test/functional/*.rb In my test/functional dir I have two files... file_sets_controller_test.rb user_sessions_controller_test.rb ...
0
votes
1answer
95 views

Test unit results in color using console but not tmux unless --use-color is specified

If I create a new Rails (3.2.12) app. Add the test-unit gem to my development, test group, and then scaffolded resource. When I run the tests from the Mac console.app, I get color output. bundle exec ...
2
votes
2answers
332 views

Guard + spork + Rspec issue - How do I remove hooks to Test::Unit?

I have guard-spork running on my rails 3.2.11 project on Ubuntu 12.04. I got my configuration from railstutorial.org. Spork starts, then guard says it can't find spork to start, waits 30 secs, then ...
1
vote
0answers
25 views

Is there in Ruby TestUnit a feature analogous to RSpec's shared_examples_for

I have several implementations of the same interface in Ruby. And I want to test them with the same set of test cases (just parametrize them with the implementation class or instance). How can I do ...
0
votes
0answers
13 views

Association clears when reloading a record in test

I am only familiar with Rspec, but now I need to fix a library which uses Test::Unit. I find out that when I reload the record, the association becomes nil For example: test "accepts nested ...
1
vote
1answer
110 views

Ruby Test script structure advise

I am writing an automated test suit for a program that has mailing lists. I am trying to decide on the best practice for structuring the tools that I am going to use. The tests need to send email ...
0
votes
1answer
73 views

How to check if response is a file?

How do I test if the response of a controller action in Rails is a file? (rack-test or capybara) Should I use unit tests to do it? The scenario is simple: I have to test if the exported users from ...
0
votes
2answers
79 views

Ruby Test::Unit's current test method name

In Ruby's Test::Unit, how do I get the current test_ method's name? In MiniTest, this can be done by self.__name__, however, it doesn't work for the full version.
2
votes
1answer
102 views

Ruby TestUnit, VCR and HTTP API Requests

I am building an API wrapper and am writing some tests for it and I have a couple of questions. 1) How do I write an assert for calls where data doesn't exist? For example, looking up a member by id ...
0
votes
0answers
67 views

verbouse assertions with Test::Unit (minitest?) in ruby 1.9

I'm in the middle of the upgrade of my application. I want to move from ruby 1.8 to 1.9 and from rails 3.0 to 3.2 (right now I run ruby 1.9 and RoR 3.2). I have problems with my tests: the output is ...
0
votes
2answers
97 views

How do i get RSpec's shared examples like behavior in Ruby Test::Unit?

Is there a plugin/extension similar to shared_examples in RSpec for Test::Unit tests?
0
votes
2answers
172 views

Ruby on Rails, uninitialized constant Test::Unit::TestCase::Assertions (NameError)

Like the headline said, I am getting the aforementioned error when I try to run my rspec tests. The exact error is (word wrapped for readability): ...
1
vote
0answers
275 views

Devise/Omniauth test failing: No route matches {:controller=>“omniauth_callbacks”, :action=>“passthru”, :provider=>:facebook}

I am using Devise 2.2.0 and omniauth 1.1.1 under rails 3.2.11. I have a test on an un-authenticated (e.g. no "before_filter :authenticate_user!") controller called "HomepageController" with an action ...
1
vote
2answers
112 views

Test just hangs when I call page.driver .render (using phantomjs, capybara and poltgergeist)

I'm getting frustrated with this issue.. I have a Test::Unit test.. using Capybara + Poltergeist + PhantomJS.. trying to take a screenshot.. But when I call it.. page.driver.render ...
0
votes
1answer
107 views

Rails 3.2: Switching from Rspec to Test::Unit

I created a new Rails 3.2.x application with the -T option for no tests because I wanted to use Rspec for testing. Now I want to revert it back to Test::Unit. How can I do that such that all of the ...
0
votes
1answer
73 views

Strings pulled from Regex apear to match but dont

This doesn't make any sense to me. I am trying to assert that these two dates are the same. They look the same but somehow they are different. #assert correct time and date ...
1
vote
0answers
80 views

Rails APP_PATH's Test dependency

I have the following test: def test_to_show_warnings_if_app_path_is_defined require File.dirname(__FILE__) + '/../lib/macros.rb' warnings = ...
0
votes
1answer
64 views

How to format output in Test::Unit 2.5.x

We just moved from using the very first version of Test::Unit with the redgreen gem to Test::Unit 2.5.3 and the output is a bit screwed up. I just want to get Test::Unit to output test results like ...
2
votes
1answer
95 views

What is `rake test` doing before running tests, and why does it take so long?

I have a rails app with about 40 tests using the default rails test:unit. The tests themselves run quickly, but there is a delay of about 8 seconds where rake test seems to be doing something in the ...
1
vote
1answer
58 views

Rails Unit Test Mystery: Method Runs, Value is Changed, Assertion Fails

I have a unit test that checks that a method does the following: Finds all instances of a model with a certain value, changes them to another value, saves the models to the database. The method ...
3
votes
1answer
118 views

How do I use Capybara to test that a form element is disabled when using jQuery's prop method?

In my Rails 3 app, I've been using jQuery's attr() method to do things like this: $('#application_dust_type_id').attr('disabled', 'disabled'); I would use Test/Unit, capybara and capybara-webkit to ...
0
votes
1answer
84 views

Can't test if method was called when using delayed_job 'delay' method

I use Mocha, Test::Unit and delayed_job and wanted to test whether mailer method has been executed, like this: test "should send info about paid payment" do payment = Payment.new ...
0
votes
1answer
50 views

Rails custom route not found when testing, but works for curl

In config/routes.rb: match 'app_config/:version' => "application#appconfig" test/functional/application_controller_test.rb: require 'test_helper' class ApplicationControllerTest < ...
2
votes
0answers
108 views

Why does net-ssh-2.6.2 fail its own unit tests?

I've installed ruby (1.9.3) on both my Mac (running OSX 10.8.2) and PC (running Windows 7). I've installed (using "gem install ...") net-ssh, test-unit, mocha, and echoe. The install seems clean (the ...
1
vote
1answer
45 views

What am I doing wrong with my rakefile?

This is the only thing in my rakefile. Rake::TestTask.new do |t| t.libs << "test" t.test_files = FileList['test/test*.rb'] t.verbose = true end When I run rake the output I get is ...
0
votes
1answer
98 views

cant understand how to use ci_reporter gem

I cant understand how the usage of the ci_reporter gem works. How do I modify my rakefile "to make the ci:setup:testunit task a dependency of your test tasks" I don't understand how to do what this ...
0
votes
0answers
49 views

Test::Unit Controller Test Failing with No Information

I'm trying to test a simple controller and no matter what I try, I keep getting the following failure with no more information. I'm new to Test::Unit and don't really know what I'm doing wrong here. ...
0
votes
1answer
55 views

How do I test a paperclip URL?

I'm using Test::Unit, and I'd like to test a paperclip url. Right now, I have a test that looks like this: def test_our_custom_url dummy = Dummy.new(:image => ...
0
votes
1answer
43 views

Using Test::Unit in an abstraction layer

Is there a way to call assertions from inside an object? I am writing Selenium tests and using test unit for assertions and easy reporting. I have an abstraction layer between the top level test ( ...
0
votes
1answer
60 views

Can we load multiple factories into the database in one shot?

Just started using factory girl. If one has to save a factory into the db then one has to run FactoryGirl.create(). But is there any way to load a collection of factories into the database without ...
0
votes
1answer
99 views

Running the same test multiple times with different setups

Does anyone know of a nice dry way to run the same group of tests in different contexts. Here is a ridiculous example of wanting to run the same tests with two different setups. I don't want to have ...

1 2 3 4 5