defines a method that is called prior to testing to set up the Lift environment. This is where you'll initialize LiftRules, Mapper, etc. The simplest approach is to just point this at your Boostrap.boot method.
A comon trait to provide utility methods for mutating the underlying HttpServletRequest.
This class provides a wrapper to test methods that require an initialized Req.
This class provides a wrapper to test methods that require an initialized S.
This class provides a wrapper to test methods that require a processed template.
A class that bridges between the description string and classes that provide the Lift-specific wrapping of the Expectation code.
A class that bridges between the description string and classes that provide the Lift-specific wrapping of the Expectation code. The method names here should be self-explanatory. For methods that take a Box[LiftSession], an Empty Box will result in the creation of a new Session.
Converts a String description into a WebSpecBridge that can then be used to set up either an S or Req instance.
This trait provides Lift-specific extensions to the Specification base trait to simplify unit testing of your code. In addition to the Scaladoc, Please see the source to WebSpecSpec.scala for an example of how to use this. This class allows you to optionally configure LiftRules for your spec. LiftRules rules are always used, so if you don't want that to happen you can just use MockWeb directly in your own custom spec and simply omit any LiftRules setup.