system-praktyk-api/test/Internship.Core.Tests/Internship.Test.cs
maxchil d234246248 improve model based on IPP form and add ids to entities (#8)
Merge branch 'master' of http://git.kadet.net/system-praktyk/system-praktyk-api into feat/improve_model

change model according to request,  add Ids

ide configuration changes, add postgre to compose

Co-authored-by: Maxchil <m.w.bohdanowicz@gmail.com>
2020-06-12 16:51:28 +02:00

18 lines
350 B
C#

using System;
using Machine.Specifications;
// ReSharper disable InconsistentNaming
namespace Internship.Core.Tests
{
[Subject(typeof(InternshipEntity))]
class When_doing_something
{
Establish context = () => { };
Because of = () => { };
It should_shit_a_brick = () =>
false.ShouldBeTrue();
}
}