This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
VERSION_mechanize= | |
URL_mechanize=http://pypi.python.org/packages/source/m/mechanize/mechanize-0.2.5.tar.gz | |
MD5_mechanize= | |
BUILD_mechanize=$BUILD_PATH/mechanize/$(get_directory $URL_mechanize) | |
RECIPE_mechanize=$RECIPES_PATH/mechanize | |
function prebuild_mechanize() { | |
true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# shoulda validation that a partial has been rendered by a view | |
class Test::Unit::TestCase | |
def self.should_render_partial(partial) | |
should "render partial #{partial.inspect}" do | |
# add the underscore. it's expected anyways | |
assert_template :partial => partial.to_s.sub(/\/(\w+)$/, '/_\1') | |
end | |
end |