~sielibre/schooltool.isli/2.10_packaging

« back to all changes in this revision

Viewing changes to src/schooltool/isli/stesting.py

  • Committer: Douglas Cerna
  • Date: 2015-06-12 04:42:26 UTC
  • Revision ID: douglascerna@yahoo.com-20150612044226-be4m4qp840cjjs75
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# SchoolTool - common information systems platform for school administration
 
3
# Copyright (c) 2014 Shuttleworth Foundation
 
4
#
 
5
# This program is free software; you can redistribute it and/or modify
 
6
# it under the terms of the GNU General Public License as published by
 
7
# the Free Software Foundation; either version 2 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
#
 
18
"""
 
19
Selenium Functional Testing Utilities for ISLI.
 
20
"""
 
21
import os
 
22
 
 
23
from schooltool.testing.selenium import SeleniumLayer
 
24
 
 
25
 
 
26
dir = os.path.abspath(os.path.dirname(__file__))
 
27
filename = os.path.join(dir, 'stesting.zcml')
 
28
 
 
29
isli_selenium_layer = SeleniumLayer(filename,
 
30
                                    __name__,
 
31
                                    'isli_selenium_layer')