Tagged Questions
6
votes
1answer
1k views
How does the “specs” BDD framework for Scala work?
I'm just getting started with Scala, and I'm wondering which language feature allows you to do this:
"PersistentQueue" should {
"add and remove one item" in {
withTempFolder {
val q = new ...
3
votes
1answer
92 views
BDD tool for Scala supporting reusable parameterized Gherkin clauses
Is there any BDD tool for Scala supporting reusable parameterized Gherkin clauses?
I would like to be able to have the ability to use specs like these:
Given number 4 is entered
When "+" is pressed
...
2
votes
1answer
182 views
Repository of “standard” BDD specs
Do you know of any resources or libraries of BDD specs?
For example, almost every web app has a login process. Some "standard" features might be handling of forgotten passwords, reset password, etc.
...
1
vote
4answers
229 views
Exception matcher in Specs BDD library for Scala
Im using the Specs BDD library for writing Scala unit tests (http://code.google.com/p/specs)
.In my code if i want to assert that a throws an exception of type ClassNotFoundException, then i can write ...