search for: account_test

Displaying 5 results from an estimated 5 matches for "account_test".

2020 Mar 01
0
dovecot-lmtp dont see otherMailbox record?
Hello Postfix + LDAP , Samba as LDAP server, Dovecot virtual_transport set in postfix to dovecot-lmtp ( for autoresponder support ) Users have their email aliases in the otherMailbox record For example, account_test at example-domain user has an alias: test at exmaple-domain Query from command line works fine: postmap -q test at example-domain ldap://etc/postfix/ad_virtual_ account_test/Maildir/ (The filter in the query ad_virtual_mailbox_maps2.cf looks like this: [cut] scope = sub query_filter = (&am...
2008 Jun 29
2
How to write test about validates_associated
...account.errors.invalid?(:email) assert account.errors.invalid?(:phone) assert account.errors.invalid?(:currency) assert account.errors.invalid?(:coursecodeformat) assert account.errors.invalid?(:vouchertypes) end end and the resualt: test_validate_present(AccountTest) [test/unit/account_test.rb:12]: (false) is not true. It looks the test failed at assert account.errors.invalid?(:currency) I feel puzzle. The model and the test looks simple,why failed -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you...
2006 Jul 21
15
RoRED a free Ruby on Rails editor for Windows
Hi. On http://www.plasmacode.com you can download RoRED, a free IDE for Ruby on Rails apps, only for Windows. It has some interesting features like tab-grouping of related MVC files, code navigation into methods (ctrl+click), and more. Best regards, Marcus. http://www.plasmacode.com -- Posted via http://www.ruby-forum.com/.
2005 Oct 20
5
Unit Test Error: `load_specification': undefined method `parse' for Time:Class
...s not appear on Windows. Anyone come across this problem? Full stack trace below--- $ rake test_units (in /Users/james/Documents/Contract Jobs/HighGroove/robrady) /usr/local/bin/ruby -Ilib:test "/usr/local/lib/ruby/gems/1.8/gems/ rake-0.6.2/lib/rake/rake_test_loader.rb" "test/unit/account_test.rb" "test/unit/company_test.rb" "test/unit/contact_test.rb" "test/unit/ file_note_test.rb" "test/unit/file_status_test.rb" "test/unit/ file_type_test.rb" "test/unit/grade_test.rb" "test/unit/lab_test.rb" "test/unit/link...
2010 Oct 27
4
Anything special needed to migrate test::unit tests from Rails 2x to Rails3?
.../DK/Documents/ror/projects/creditcompare3) DKMac:creditcompare3 DK$ (requesting verbose fares just as badly using TESTOPTS="-v") Not even an error! I would be happy with an error! Also tried the old single test file with same result: DKMac:creditcompare3 DK$ ruby -I lib:test test/unit/account_test.rb DKMac:creditcompare3 DK$ My test_helper.rb is pretty standard and based on a default Rails 3 app while I added back my code (not posted here): ENV["RAILS_ENV"] = "test" require File.expand_path(''../../config/environment'', __FILE__) require ''rails...