🏗 Added classes for songs, albums & artists.
This is going to be an ambitious project.
This commit is contained in:
parent
eec71cf6d7
commit
73cc6d7784
7
src/app/classes/album.spec.ts
Normal file
7
src/app/classes/album.spec.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { Album } from './album';
|
||||
|
||||
describe('Album', () => {
|
||||
it('should create an instance', () => {
|
||||
expect(new Album()).toBeTruthy();
|
||||
});
|
||||
});
|
2
src/app/classes/album.ts
Normal file
2
src/app/classes/album.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export class Album {
|
||||
}
|
7
src/app/classes/artist.spec.ts
Normal file
7
src/app/classes/artist.spec.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { Artist } from './artist';
|
||||
|
||||
describe('Artist', () => {
|
||||
it('should create an instance', () => {
|
||||
expect(new Artist()).toBeTruthy();
|
||||
});
|
||||
});
|
2
src/app/classes/artist.ts
Normal file
2
src/app/classes/artist.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export class Artist {
|
||||
}
|
7
src/app/classes/song.spec.ts
Normal file
7
src/app/classes/song.spec.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { Song } from './song';
|
||||
|
||||
describe('Song', () => {
|
||||
it('should create an instance', () => {
|
||||
expect(new Song()).toBeTruthy();
|
||||
});
|
||||
});
|
2
src/app/classes/song.ts
Normal file
2
src/app/classes/song.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export class Song {
|
||||
}
|
Loading…
Reference in New Issue
Block a user