Changeset 1898
- Timestamp:
- May 30, 2011, 2:51:20 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/dbnp/configuration/ExampleStudies.groovy
r1705 r1898 76 76 77 77 // Look up the used templates which should also be in the database by now 78 def studyTemplate = Template.findByName(" Academic study")78 def studyTemplate = Template.findByName("NMC Study") 79 79 def mouseTemplate = Template.findByName("Mouse") 80 80 def humanTemplate = Template.findByName("Human") … … 500 500 501 501 final String testStudyName = "Test study" 502 final String testStudyTemplateName = " Academic study"502 final String testStudyTemplateName = "NMC Study" 503 503 final String testStudyCode = "AAA-Test" 504 504 final String testStudyDescription = "Description of Test Study" -
trunk/test/integration/gscf/StudyTests.groovy
r1588 r1898 20 20 21 21 final String testStudyName = "Test study" 22 final String testStudyTemplateName = " Academic study"22 final String testStudyTemplateName = "NMC Study" 23 23 final String testStudyCode = "AAA-Test" 24 24 final String testStudyDescription = "Description of Test Study" -
trunk/test/webtest/gscf/CreateStudyWebTests.groovy
r1806 r1898 25 25 26 26 clickLink "Create a new study" 27 setSelectField(name: "template", text: " Academic study")27 setSelectField(name: "template", text: "NMC Study") 28 28 setInputField(name: "title", value: "Test create study") 29 29 setInputField(name: "description", value: "Test study from CreateStudyWebTests.testCreateStudy()")
Note: See TracChangeset
for help on using the changeset viewer.