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>
18 lines
350 B
C#
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();
|
|
}
|
|
}
|