Displaying 2 results from an estimated 2 matches for "add_project".
2007 Feb 21
1
Problem with adding project with Subversion username and password
...und that when adding a project with Subversion username and password,
e.g. cruise add <project-name> --url <URL> --username <username> --password
<password>
the username and password were not actually passed to svn command.
I printed out the content of scm_options in script/add_project file and
found that the values of username and password were empty.
Then I deleted the nil parameter (the first parameter) from opts.on(..) for
username and password:
i.e. opts.on("--username username", String, "Specify a username for
sourcecontrol") { |v| scm_options[:username...
2007 Feb 07
1
advice on a spec''ing best practice
i am in the process of converting the tests in two projects that i am
working on (one rails, one ruby) to rspec. i felt like i was doing ok
applying BDD and using rspec properly until i read a comment in
another topic on the list from David (subject "long jumping out of
code in specs"). In there it was said:
---
Testing privates is a no-no, but testing that a public method on the
same