Files
mip/tests/start.rb
hardya dbcb349c45 Addresses #269, #280, #306.
Add processing to make it clearer which application build has been produced and to link the schema with the correct application (AssociateSchema.sql, SetSubstitution.sql, bulk_load.sql and InstallMIP.cmd)

Changes to schema: METERS now have 'MESC_CODE'. Associated changes in the bulk_load routines and initial changes to mip_quotation.pck (needs confirmation testing).

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

46 lines
987 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