0
votes
3answers
50 views
Automating Integration Tests: Use xUnit?
I'm looking into how best to automate integration tests (by which I mean complete use cases entirely within our application)
The questions
Correct Approach for Unit Testing Comp …
0
votes
1answer
20 views
(Rails) Assert_Select’s Annoying Warnings
Does anyone know how to make assert_select not output all those nasty html warnings during a rake test? You know, like this stuff:
.ignoring attempt to close body with div
opened …
0
votes
3answers
20 views
Rails Functional Test of Arbitrary or Custom URLs
I have a RESTful resource in my Rails app called "Photo". I'm using Paperclip to serve different "styles" of my photos (for thumbnails and the like), and I'm using a custom route t …
0
votes
2answers
178 views
DRYer tests with associations in factory_girl
Can anyone suggest a better way to make a factory use a pre-built model
instance for its association? For example, so that it would be possible
below to define a child of the Messa …
1
vote
2answers
79 views
How to automate functional/integration tests and database rollbacks
Hello!
In contrast to my previous question, i'll try to give my requirements.
I am trying to find some framework/methodology/"thing" that would fit the following:
Ability to wr …
0
votes
1answer
29 views
How to assert action returns correct text?
Is there a standard or best-practices way to test that an action in rails is returning the correct text? For example, I have a simple action that is used for doing ajax validation …
12
votes
6answers
745 views
Integrating Automated Web Testing Into Build Process
I'm looking for suggestions to improve the process of automating functional testing of a website. Here's what I've tried in the past.
I used to have a test project using WATIN. Yo …
0
votes
1answer
23 views
Assert difference of number of children in relationship in Ruby on Rails
My controller is able to create a child book_loan. I am trying to test this behavior in a functional test but am having a hard time using the assert_difference method. I've tried a …
0
votes
1answer
193 views
Authlogic edit_password_reset_url in Functional / Integration Tests
I am trying to implement some tests to validate the behavior for Authlogic password resets as explained in http://www.binarylogic.com/2008/11/16/tutorial-reset-passwords-with-authl …
3
votes
2answers
122 views
How to Automate Testing of Medium Trust Code
I would like to write automated tests that run in medium trust and fail if they require full trust.
I am writing a library where some functionality is only available in full trus …
2
votes
2answers
502 views
Ruby on Rails functional testing with the RESTful Authentication plugin
I started writing functional tests for my rails app today. I use the RESTful authentication plugin. I ran into a couple confusing things I hope someone can clarify for me.
1) I …
1
vote
2answers
53 views
How to manage test fixtures for end-to-end testing?
Having just set up a test framework for a new web application, I realized I missed one of the big questions: "How do I make tests independent from each other?"
Years ago I have se …
2
votes
6answers
368 views
Testing whole programs. best practices
I am currently developing a library and a set of programs using this library, in python.
Unit testing dictates that I import each module from the library, and test the classes and …
2
votes
8answers
306 views
Do you need to do unit and integration testing if you already do functional testing?
People at my company see unit testing as a lot of extra work, that offers fewer benefits than existing functional tests. Are unit and integration tests worth it? Note a large exist …
2
votes
9answers
196 views
What kinds of unit tests pay off the most in business value?
My question assumes that folks already believe that unit tests of some sort are worthwhile and actually write them on their current projects. Let's also assume that unit tests for …
