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 | |
---|
1 | from django.test import TestCase
|
---|
2 |
|
---|
3 | # Create your tests here.
|
---|
4 | from django.shortcuts import render
|
---|
5 | import os
|
---|
6 | import django
|
---|
7 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'MuiscOrganizationSystem.settings')
|
---|
8 | django.setup()
|
---|
9 |
|
---|
10 | from music.models import Artist
|
---|
11 | artists = Artist.objects.raw('SELECT * FROM music_artist')
|
---|
12 | for artist in artists:
|
---|
13 | print(artist.name) |
---|
Note:
See
TracBrowser
for help on using the repository browser.