Files
mip/tests/start.rb
hardya 320ce75fcf Changes made for BulkLoad information provided by Gareth on 5th March (new bas_dwg/102M.jpg, csv exports)
New package mip_debug_constants.pks to be used to store compilation constants for debugging purposes (packages to use pl from mip_debug).

mip_quotation.pck modified to support exchanges based on being provided with an existing model rather than meter size. Changes to the DATAITEM_ROLES.csv to support this new field, impact on mandatory rules captured by mip_helper_special_cases.pck

git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@3900 248e525c-4dfb-0310-94bc-949c084e9493
2008-03-10 12:29:59 +00:00

46 lines
992 B
Ruby

#requires
require 'watir'
#require the test unit library
require 'test/unit'
#require our constants
require 'constants'
#require our useful helper methods
require 'default_methods.rb'
#includes
include Watir
@@ie = IE.new
@@ie.maximize
#set the speed of watir, we'd also set the speed of light but that's supposed to be a constant
@@ie.speed = :fast
#
# Setup default config
#
# Remove the test data
#
#dosql('begin cleanup_testdata; commit; end;')
#
# Set the system submission deadline
#
#dosql('begin UPDATE system_configuration SET value = \'20:00\'
# WHERE parameter = \'G_SUBMISSION_DEADLINE\'; commit; end; ')
#
#Set up our contracts before we start serious testing
#
#require 'usefulscriptthatmightsetupdata'
#
#Get our individual integration tests
#
#require 'exportdatatests'
#require 'enquirytests'
#require 'housingtests'
#require 'basestests'
#require 'drawingtests.rb'
require 'user_management.rb'
#@@ie.wait
#@@ie.close