module Sprinkle::Verifiers::Test

Test Verifier

Checks that a specific test runs successfully (using the unix test command)

Example Usage

verify { test '-f /some_file' }

Public Instance Methods

test(args) click to toggle source

Checks to make sure a test runs successfully on the remote server

# File lib/sprinkle/verifiers/test.rb, line 15
def test(args)
  @commands << "test #{args}"
end