You cannot post messages because only members can post, and you are not currently a member.
Description:
Remarkable is a framework for Rspec matchers.
|
|
|
|
Working setup of remarkable 4 with Rails 3.1
|
| |
Gemfile
============
gem "rspec"
gem "rspec-rails"
gem "remarkable", "~> 4.0.0.alpha4"
gem "remarkable_activerecord", "~> 4.0.0.alpha4"
spec/spec_helper.rb
===========
require "remarkable/active_record"
|
|
|
validate_numericality_of(:amou nt).greater_than_or_equal_to(0 )
|
| |
Hello,
Trying out remarkable with rails 3.1 app
my Gemfile
..
gem "rspec"
gem "rspec-rails"
gem "remarkable_activerecord", "~> 4.0.0.alpha4"
spec_helper
..
require 'rspec/rails'
require 'remarkable/active_record'
a model spec
..
it { should
validate_numericality_of(:amou nt).greater_than_or_equal_to(0 ) }... more »
|
|
|
Rails 3 / Rspec 2 / Remarkable 3.1 - matchers STILL not working
|
| |
Hi,
I've found numerous posts about people having problems with remarkable
matchers not showing up in their specs. Some of these are from 2010
and before.......
This is quite concerning...... Now it is March 2011, and I STILL
cannot access the remarkable matchers from my tests.
Gemfile:... more »
|
|
|
Problem with Rails 3 and have_scope
|
| |
I'm not sure how to get have_scope passing. I'm on Rails 3.0.3 with
using the alpha4 version of remarkable_activerecord. According to the
docs, what I have should work.
Failure/Error: it { should have_scope(:latest).limit(3) }
Expected :latest when called on Post scope to SELECT "posts".*... more »
|
|
|
State of Remarkable 4
|
| |
Hi everyone,
I've gotten a request from someone off of Github asking about the
status of Remarkable 4. Considering that Rails 3 is out and Rspec 2.1
is out, it is reasonable to expect an official, non-beta version of
Remarkable capable of working with Rails 3 and Rspec 2.
Here is my thinking on this:... more »
|
|
|
rspec2, rails3
|
| |
Hi, has anyone here successfully installed remarkable with rspec2,
rails3?
when I add to spec_helper.rb
require 'remarkable/active_record'
i get "no such file to load " error
Also, the gem doesnt seem to be installing remarkable_activemodel
stuff
this is the first time i've tried using this gem... more »
|
|
|
Remarkable + Mongo
|
| |
First thing which I may be about to make painfully obvious - I'm an
RSpec newbie. I just started a new project using Rails 3, MongoDB,
MongoMapper (Rails3 branch), Rspec 2 (2.0.0.beta.22), Rspec Rails
(2.0.0.beta.22), and Remarkable (4.0.0.alpha4). I did run "rails g
rspec:install" and my simple, non-Remarkable test does pass.... more »
|
|
|