source: music/tests.py@ d7662b5

Last change on this file since d7662b5 was d7662b5, checked in by ManuelTrajcev <manueltrajcev7@…>, 3 weeks ago

init

  • Property mode set to 100644
File size: 356 bytes
Line 
1from django.test import TestCase
2
3# Create your tests here.
4from django.shortcuts import render
5import os
6import django
7os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'MuiscOrganizationSystem.settings')
8django.setup()
9
10from music.models import Artist
11artists = Artist.objects.raw('SELECT * FROM music_artist')
12for artist in artists:
13 print(artist.name)
Note: See TracBrowser for help on using the repository browser.