Displaying 20 results from an estimated 2000 matches similar to: "Little tool to help RSpec Textmate Users"
2007 Jul 24
2
Mocking Resolv::DNS?
Hello Rspecers,
I have a rails project where I am calling Resolv::DNS.open and then
using the block to check a domain name.
The code snippet in question is:
domain = "mytest.com"
Resolv::DNS.open do |dns|
@mx = dns.getresources(domain, Resolv::DNS::Resource::IN::MX)
end
I obviously want to stub this out, especially for speed but can''t
quite work out how.
I
2007 Jul 18
10
Rails - Mock going out of scope?
Hello list,
I think I have a rails related RSpec problem with a mock going out of
scope on a recursive call to a model.
The code is at: http://pastie.textmate.org/79821 if you want to see it
highlighted. I have pasted it below as well.
Basically, I have an acts_as_nested_set model called "Node", which
works fine. I have a function which finds the language name of the
node instance.
2007 Jul 24
11
Mock or Stub strategy for validates_uniqueness_of
Hi,
I''m a bit stuck with mocking a unit test of a join model with regards to a
validates_uniqueness_of clause.
I have
class Book < AR:B
has_many :clippings
various validates_presence_of etc
end
class Clip < AR:B
has_many :clippings
various validates_presence_of etc
end
class Clipping < AR:B
belongs_to :book
belongs_to :clip
validates_uniqueness_of :clip_id,
2007 Jul 27
0
RMagick progress monitor with
Hey Ben,
I had the same situation, though not with RMagick.
I made progress bars running inside of active scaffold. But you can
make it work on anything.
Screen cast showing it running and short tutorial are at
http://www.blognow.com.au/q
Screencast:
http://www.blognow.com.au/q/64767/Screen_cast_of_multiple_progress_bar_tracker.html
Regards
Mikel
>
> I''m looking for a way
2007 Jun 16
0
Working Background Task Progress Bars
I posted this on the active scaffold group. But it might be of
interest to a wider community.
I just got the monitoring of many background tasks with independent
progress bars working with ActiveScaffold. Looks good and is quite
usable.
You can see the screencast and short (abridged) tutorial on how I did
it at:
http://www.blognow.com.au/q
or:
2009 May 27
3
Call in progress tones
Hello all,
I've played with background and play sounds apps and googled around
and asked the list before to no avail.
Does anyone know of a way to have tones played during the call
progress stage of the call?
We (especially on some international circuits) get up to 5 seconds of
silence before the phone starts ringing or is busy.
I don't want to force "R" on the Dial app as
2007 Jul 29
24
View-Driven-Development by Behavior-Driven-Development and RSpec
One of the things that turned me on to BDD and RSpec was speccing
views first, that the desired end would drive the development. In
previous projects while using Test::Unit I would try to make educated
guesses as to what would be needed in the model and controllers to
derive the view without actually writing the view until afterwards.
This is all because testing relied on each previous
2009 Dec 30
3
Mail now in ActionMailer
OK everyone, so we finally have Mail merged into ActionMailer replacing out
TMail
This is for the 3.0 release, and not part of the 2.x tree.
I am the TMail maintainer and I decided this year to write a ruby email
handler, the Mail gem is my solution to this.
Mail takes a very object oriented approach to email. It conforms to RFCs as
closely as practical and parses the 0.5gb Trec and 2.5Gb
2009 Dec 30
3
Mail now in ActionMailer
OK everyone, so we finally have Mail merged into ActionMailer replacing out
TMail
This is for the 3.0 release, and not part of the 2.x tree.
I am the TMail maintainer and I decided this year to write a ruby email
handler, the Mail gem is my solution to this.
Mail takes a very object oriented approach to email. It conforms to RFCs as
closely as practical and parses the 0.5gb Trec and 2.5Gb
2008 Dec 03
8
Indentation Conventions for Ruby and Cucumber
On Thu, Nov 27, 2008 at 4:28 PM, Aslak Helles?y <aslak.hellesoy at gmail.com>wrote:
> When (if) this thread ends, let''s start a discussion about indentation
> conventions!
>
Oh... let the pleasure be mine!... and why wait?
_EVERYONE_ knows that the only way to indent ruby code is 2 plain spaces.
Tabs are known to be the source of all evil and 4 spaces obviously wastes
2007 Dec 12
0
Alternate file jump in Textmate
Hello all,
Using RSpec 1.1 RC from the SVN source. Running in Textmate with the
bundle, all working good.
Got a problem with the Alternate File jump (Ctl Shift DownArrow)
because it works fine in Rails with the html.erb templates, but I can
not figure out how to get it working with HAML templates that I am
using.
For ref, my specs are called:
spec/views/users/edit.html.haml_spec.rb
For the
2009 Oct 31
3
1.9 Compat and merging mail gem into ActionMailer
Hi all of both RoR Core and TMail.
You may know me better as the maintainer of TMail.
However, TMail has been a bit difficult to get working with Ruby 1.9,
so in the light of that, I sat down over the past few months and wrote
myself an all encompasing mail gem. Mail passes all of its hundreds
of specs equally well in Ruby 1.8.6, 1.8.7 and 1.9.1. Mail reads
every email in the TMail test suite
2009 Mar 04
1
Question on phone line "pass through"
Hi all,
I have a TDM2400 full of FXS cards and a TDM800 full of FXO cards.
If I have a fax machine on the FXS port dialing out through asterisk
on the TDM800 FXO, should I be expecting any problems?
Or should this just work as expected? (ie, flawlessly with the
asterisk box essentially transparent to the whole operation).
I am doing it this way to allow many faxes and modems to share a dial
2008 Feb 21
1
Using Really Simple History on Rails
Hello all,
I am getting Really Simple History working in rails.
I''ve got this history content up etc, but I am a bit lost on how to
capture the XHR response data from the Rails app to insert into the
history.
My understanding would be to have some way of grabbing the response
data from the Rails app, inserting that into the history with
dhtmlHistory.add(''PageName'',
2008 Nov 17
4
Debugging Asterisk
Hello all,
Two questions:
1) What do people on the list do to debug phone quality issues. Phone
quality seems to be a very subjective thing. But are there metrics that you
can work against? Like maybe generating a tone and measuring the return
quality etc? It looks like all trial and error right now. If that is the
way it is, then fine. But anything more accurate / scientific?
2) Also
2008 Jun 05
2
xhr :post giving wrong number of arguments on rails 2.1?
Getting a strange error.
In a story I have the following step:
When "I submit a search name" do
xhr :post, ''/searches'', {:search => {:given_name => "bob", :family_name =>
"smith"}}
end
I am getting:
ArgumentError: wrong number of arguments (4 for 3)
stories/searching_story_spec.rb:45 in "I submit a search name"
But I only
2007 Jul 26
1
autotest loosing RAILS_ROOT Constant?
I am having a weird error that I have not had before... I''m bouncing
it off the list to see if anyone else has had it, or to give me some
pointers about how to find it.
Basically, AUTOTEST will run (RSpec mode), fine, then suddenly, will
complain that RAILS_ROOT is undefined.
Then I stop and restart it, with no code change... no problem.
It happens on different specs where I use
2007 Dec 28
1
Getting wrong route - fairly complete error description
OK, I have a routing problem, that seems to be working in the console,
but not in the app.
I have people that have nested tasks, like so:
-------------------------------
# routes.rb
map.resources :people do |person|
person.resources :phone_notes
person.resources :documents
person.resources :tasks, :member => {:complete => :put}
end
map.resources :tasks, :member => {:complete =>
2008 Dec 21
5
Good comparisons on cheaper VOIP phones
Hello list,
I am doing some work for a non profit group.
As part of this, I am going to be putting in a 30 handset Asterisk solution.
We are trying to keep the costs down as much as possible, as this job
includes cabling, I am looking at POE solutions.
On the switch side, I am considering something like some Netgear ProSafe
FS726TP 24 port switches, or maybe the equivalent Linksys SRW224MP 24
2009 Jan 11
6
Why does ActiveRecord allow perception of success when updating an ID, however it doesn't really work(i.e. no change in database)?
Hi,
Why does ActiveRecord allow perception of success when updating an ID,
however it doesn''t really work(i.e. no change in database)?
Here''s an example. The update of "id" versus update of a non-existent
attribute.
?> ai = AccountItem.find(:first) => #<AccountItem id: 1, account_id: 1,
date: "2009-01-11", amount: