Commit eb8dcae1 authored by Ayn Collado's avatar Ayn Collado

Added inital tests to tests.py

parent ea74062b
from django.test import TestCase
from selenium import webdriver
from django.urls import resolve
import unittest
# Create your tests here.
class NewVisitorTest(unittest.TestCase):
def setUp(self):
self.browser = webdriver.Firefox()
def tearDown(self):
self.browser.quit()
def test_Fail_Test(self):
self.fail('Finished the test!')
if __name__ == '__main__':
unittest.main(warnings='ignore')
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment