Displaying 5 results from an estimated 5 matches for "rails10fasttest".
2006 Mar 01
5
rails models, logging and testing
Hello,
I am using rails 1.0 and I have following questions. Please help me.
[1] How can I do logging in the rails models? I checked the wiki but didn''t find
anything which I explained how to do logging in models.
[2] Say I have a certain model, when I declare a function in the model, and
try to use that function from a view or a unit test, I get an error. For views
the error occurs
2006 Jan 17
2
Rails Unit test Problem
Hi all,
I have a problem with unit test database data reload.
I have several test_xxx function in my ruby unit test file
I would like to know why xxxx.yml containing test data are load only 1 time
for all the test while specification say it done for before each test
method.
Thus my test_xxx are dependant of previous test
This is a mistake, because the specs say the test data are reload
2005 Dec 15
4
Order of tests matters???
I have a problem with tests. I always thought that the order of tests doesn''t
matter because the fixtures are reloaded before every test method. However, I''ve
just discovered that this isn''t true.
This is a quote from the "Guide to testing the rails" howto:
"... if we had another test method, we wouldn’t have 10 users on the 2nd test
because they would
2005 Oct 28
2
Accessing fixture
I have a very simple problem. I can''t seem to access
a the fixture by name
I have a sites.yml with:
simple_site:
id: 1
name: demo
description: A demo site
created_on: 2005-10-25 00:00:00
updated_on: 2005-10-25 00:00:00
And I have a test class as:
require File.dirname(__FILE__) + ''/../test_helper''
class SiteTest < Test::Unit::TestCase
fixtures
2005 Oct 27
2
Fixtures are not loading into instance variables. Why not?
Hi,
I have a fixture in a unit test and I see that the
fixture is loaded correctly into the database table,
but no instance variables are created.
So now I''m stuck.
More background: this is my first RoR project and I
have just installed the SaltedLoginGenerator and
generated its output.
Running the unit tests gives an error, so I cut it
down to just 1 test: